Gradle with GitHub Actions
GitHub Actions で Gradle に関するもの
公式の actions だけで行えるもの
actions/setup-java で java を実行できるようにして gradle wrapper を通じて実行する
https://github.com/actions/setup-java
https://github.com/actions/starter-workflows/blob/main/ci/gradle.yml
actions/cache で gradle に関するキャッシュを使う
https://github.com/actions/cache
https://github.com/actions/cache/blob/main/examples.md#java---gradle
コミュニティの actions で行えるもの
gradle 公式による action
https://github.com/marketplace/actions/build-with-gradle
GRADLE_USER_HOME
https://docs.gradle.org/current/userguide/gradle_wrapper.html#wrapper_checksum_verification
publish
->
publish to GitHub Packages
#Gradle_with_CI
#GitHub